python3: bump to version 3.13.9
authorAlexandru Ardelean <alex@shruggie.ro>
Sun, 24 Nov 2024 08:59:27 +0000 (10:59 +0200)
committerHannu Nyman <hannu.nyman@iki.fi>
Sat, 8 Nov 2025 09:21:38 +0000 (11:21 +0200)
commit97a92f2e7a77c39d087892f5c9a7350c31f3d65b
tree1a5229335cc353a27d1df5094651d2d47bbf64bb
parente3a1f5b0b92689b4b40e9dfed2f8fce4c779f181
python3: bump to version 3.13.9

Explicitly disable readline and tkinter modules for host-build.
Host-build will not build if these fail.
  - readline isn't a hard requirement for host-python; some minor lack of
    functionality would be felt, but nothing terrible
  - tkinter is also disabled on the target; but for the host-python we
    don't need it either

Dropped patch: 010-no-ncursesw.patch
  - Since we're disabling readline in the host build

Drop setuptools from python3 - the only reason we kept it there, was
because it was required by pip; pip is still there and seems to install and
work fine without setuptools. There's also a separate setuptools package in
openwrt anyway:
  https://github.com/openwrt/packages/tree/master/lang/python/python-setuptools
Also, Python no longer installs it:
  https://github.com/python/cpython/issues/95299

Drop python3-cgi - https://github.com/python/cpython/commit/08d592389603500af398d278af4842cff6f22c33
Drop distutils - https://github.com/python/cpython/commit/0faa0ba240e815614e5a2900e48007acac41b214
Drop lib2to3 - https://github.com/python/cpython/commit/ae00b810d1d3ad7f1f7e226b02ece37c986330e7

Drop patch: 0001-Adjust-library-header-paths-for-cross-compilation.patch
  - A lot of stuff has changed regarding cross-compilation; at this point
    it's unclear what we need moving forward.

Drop patch: 006-do-not-add-multiarch-local-paths.patch
  - setup.py went away, so no idea if this is needed anymore

Re-applied: 003-do-not-run-compileall.patch

Drop: 008-distutils-use-python-sysroot.patch
  - Buildroot seems to have also dropped this; this patch is from them

Added: 09-don-t-run-profile-task-during-cross-build.patch
  - For cross_compilation, running the profile-task will not work, it also
    mentions this in a comment, but nobody dared to patch it yet (at least
    in this release (3.13.9)

Re-applied: 026-openssl-feature-flags.patch
  - This could have been dropped completely, but upstream decided to keep
    scrypt on by default; for host-build this fails, because OpenWrt keeps
    libressl

Drop patch: 100-gh-95855-Refactor-platform-triplet-detection-code-GH-107221.patch
  - This was a backport; it probably should have been removed sooner

Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
wip
17 files changed:
lang/python/python3-version.mk
lang/python/python3/Makefile
lang/python/python3/files/python3-package-cgi.mk [deleted file]
lang/python/python3/files/python3-package-distutils.mk [deleted file]
lang/python/python3/files/python3-package-lib2to3.mk [deleted file]
lang/python/python3/patches/003-do-not-run-compileall.patch
lang/python/python3/patches/004-do-not-write-bytes-codes.patch
lang/python/python3/patches/006-do-not-add-multiarch-local-paths.patch [deleted file]
lang/python/python3/patches/008-distutils-use-python-sysroot.patch [deleted file]
lang/python/python3/patches/009-don-t-run-profile-task-during-cross-build.patch [new file with mode: 0644]
lang/python/python3/patches/010-no-ncursesw.patch [deleted file]
lang/python/python3/patches/020-uuid.patch [deleted file]
lang/python/python3/patches/024-musl-find_library.patch
lang/python/python3/patches/025-choose-python-config-version.patch
lang/python/python3/patches/026-openssl-feature-flags.patch
lang/python/python3/patches/027-fix-host-build-libressl.patch
lang/python/python3/patches/100-gh-95855-Refactor-platform-triplet-detection-code-GH-107221.patch [deleted file]